/* * Copyright (c) 2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @file * @kit ArkUI */ import { DrawContext, Size, Offset, Position, Pivot, Scale, Translation, Matrix4, Rotation, Frame, BorderRadiuses, ShapeMask, ShapeClip, Edges, LengthMetricsUnit } from './Graphics'; /*** if arkts 1.2 */ import { BorderStyle } from './component/enums' /*** endif */ /** * Defines RenderNode. Contains node tree operations and render property operations on node. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Defines RenderNode. Contains node tree operations and render property operations on node. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 12 */ /** * Defines RenderNode. Contains node tree operations and render property operations on node. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 * @arkts 1.1&1.2 */ export declare class RenderNode { /** * Constructor. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Constructor. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ constructor(); /** * Add child to the end of the RenderNode's children. * * @param { RenderNode } node - The node will be added. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Add child to the end of the RenderNode's children. * * @param { RenderNode } node - The node will be added. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ appendChild(node: RenderNode): void; /** * Add child to the current RenderNode. * * @param { RenderNode } child - The node will be added. * @param { RenderNode | null } sibling - The new node is added after this node. When sibling is null, insert node as the first children of the node. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Add child to the current RenderNode. * * @param { RenderNode } child - The node will be added. * @param { RenderNode | null } sibling - The new node is added after this node. When sibling is null, insert node as the first children of the node. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ insertChildAfter(child: RenderNode, sibling: RenderNode | null): void; /** * Remove child from the current RenderNode. * * @param { RenderNode } node - The node will be removed. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Remove child from the current RenderNode. * * @param { RenderNode } node - The node will be removed. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ removeChild(node: RenderNode): void; /** * Clear children of the current RenderNode. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Clear children of the current RenderNode. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ clearChildren(): void; /** * Get a child of the current RenderNode by index. * * @param { number } index - The index of the desired node in the children of RenderNode. * @returns { RenderNode | null } - Returns a RenderNode. When the required node does not exist, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get a child of the current RenderNode by index. * * @param { number } index - The index of the desired node in the children of RenderNode. * @returns { RenderNode | null } - Returns a RenderNode. When the required node does not exist, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ getChild(index: number): RenderNode | null; /** * Get the first child of the current RenderNode. * * @returns { RenderNode | null } - Returns a RenderNode, which is first child of the current RenderNode. * If current RenderNode does not have child node, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get the first child of the current RenderNode. * * @returns { RenderNode | null } - Returns a RenderNode, which is first child of the current RenderNode. * If current RenderNode does not have child node, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ getFirstChild(): RenderNode | null; /** * Get the next sibling node of the current RenderNode. * * @returns { RenderNode | null } - Returns a RenderNode. If current RenderNode does not have next sibling node, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get the next sibling node of the current RenderNode. * * @returns { RenderNode | null } - Returns a RenderNode. If current RenderNode does not have next sibling node, returns null. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ getNextSibling(): RenderNode | null; /** * Get the previous sibling node of the current RenderNode. If current RenderNode does not have previous sibling node, returns null. * * @returns { RenderNode | null } - Returns a RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get the previous sibling node of the current RenderNode. * * @returns { RenderNode | null } - Returns a RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ getPreviousSibling(): RenderNode | null; /** * Set the background color of the RenderNode. * * @param { number } color - The background color. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set the background color of the RenderNode. * * @param { number } color - The background color. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set backgroundColor(color: number); /** * Get the background color of the RenderNode. * * @returns { number } - Returns a background color. Colors are defined as ARGB format represented by number. * @default 0X00000000 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get the background color of the RenderNode. * * @returns { number } - Returns a background color. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get backgroundColor(): number; /** * Set whether the RenderNode clip to frame. * * @param { boolean } useClip - Whether the RenderNode clip to frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set whether the RenderNode clip to frame. * * @param { boolean } useClip - Whether the RenderNode clip to frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set clipToFrame(useClip: boolean); /** * Get whether the RenderNode clip to frame. * * @returns { boolean } - Returns whether the RenderNode clip to frame. * @default true * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get whether the RenderNode clip to frame. * * @returns { boolean } - Returns whether the RenderNode clip to frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get clipToFrame(): boolean; /** * Set opacity of the RenderNode. * * @param { number } value - The opacity of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set opacity of the RenderNode. * * @param { number } value - The opacity of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set opacity(value: number); /** * Get opacity of the RenderNode. * * @returns { number } Returns the opacity of the RenderNode. * @default 1 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get opacity of the RenderNode. * * @returns { number } Returns the opacity of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get opacity(): number; /** * Set frame size of the RenderNode. * * @param { Size } size - The size of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set frame size of the RenderNode. * * @param { Size } size - The size of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set size(size: Size); /** * Get frame size of the RenderNode. * * @returns { Size } The size of the RenderNode frame. * @default Size { width: 0, height: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get frame size of the RenderNode. * * @returns { Size } The size of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get size(): Size; /** * Set frame position of the RenderNode. * * @param { Position } position - The position of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set frame position of the RenderNode. * * @param { Position } position - The position of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set position(position: Position); /** * Get frame position of the RenderNode. * * @returns { Position } - The position of the RenderNode frame. * @default Position { x: 0, y: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get frame position of the RenderNode. * * @returns { Position } - The position of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get position(): Position; /** * Set frame info of the RenderNode. * * @param { Frame } frame - The frame info of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set frame info of the RenderNode. * * @param { Frame } frame - The frame info of the RenderNode frame. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set frame(frame: Frame); /** * Get frame info of the RenderNode. * * @returns { Frame } - Returns frame info of the RenderNode. * @default Frame { x: 0, y: 0, width: 0, height: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get frame info of the RenderNode. * * @returns { Frame } - Returns frame info of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get frame(): Frame; /** * Set pivot of the RenderNode. * * @param { Pivot } pivot - The pivot of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set pivot of the RenderNode. * * @param { Pivot } pivot - The pivot of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set pivot(pivot: Pivot); /** * Get pivot vector of the RenderNode. * * @returns { Pivot } - Returns pivot vector of the RenderNode. * @default Pivot { x: 0.5, y: 0.5 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get pivot vector of the RenderNode. * * @returns { Pivot } - Returns pivot vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get pivot(): Pivot; /** * Set scale of the RenderNode. * * @param { Scale } scale - The scale of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set scale of the RenderNode. * * @param { Scale } scale - The scale of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set scale(scale: Scale); /** * Get scale vector of the RenderNode. * * @returns { Scale } - Returns scale vector of the RenderNode. * @default Scale { x: 1, y: 1 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get scale vector of the RenderNode. * * @returns { Scale } - Returns scale vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get scale(): Scale; /** * Set translation of the RenderNode. * * @param { Translation } translation - the translate vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set translation of the RenderNode. * * @param { Translation } translation - the translate vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set translation(translation: Translation); /** * Get translation vector of the RenderNode. * * @returns { Translation } - Returns translation vector of the RenderNode. * @default Translation { x: 0, y: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get translation vector of the RenderNode. * * @returns { Translation } - Returns translation vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get translation(): Translation; /** * Set rotation vector of the RenderNode. * * @param { Rotation } rotation - The rotation vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set rotation vector of the RenderNode. * * @param { Rotation } rotation - The rotation vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set rotation(rotation: Rotation); /** * Get rotation vector of the RenderNode. * * @returns { Rotation } - Returns rotation vector of the RenderNode. * @default Rotation { x: 0, y: 0, z: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get rotation vector of the RenderNode. * * @returns { Rotation } - Returns rotation vector of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get rotation(): Rotation; /** * Set transform info of the RenderNode. * * @param { Matrix4 } transform - the transform info of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set transform info of the RenderNode. * * @param { Matrix4 } transform - the transform info of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set transform(transform: Matrix4); /** * Get transform info of the RenderNode. * * @returns {Matrix4 } - Returns transform info of the RenderNode. * @default Matrix4 [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ] * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get transform info of the RenderNode. * * @returns {Matrix4 } - Returns transform info of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get transform(): Matrix4; /** * Set shadow color of the RenderNode. * * @param { number } color - the shadow color of the RenderNode. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set shadow color of the RenderNode. * * @param { number } color - the shadow color of the RenderNode. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shadowColor(color: number); /** * Get shadow color of the RenderNode. * * @returns { number } - Returns the shadow color of the RenderNode. Colors are defined as ARGB format represented by number. * @default 0X00000000 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get shadow color of the RenderNode. * * @returns { number } - Returns the shadow color of the RenderNode. Colors are defined as ARGB format represented by number. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shadowColor(): number; /** * Set shadow offset of the RenderNode. * * @param { Offset } offset - the shadow offset of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set shadow offset of the RenderNode. * * @param { Offset } offset - the shadow offset of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shadowOffset(offset: Offset); /** * Get shadow offset of the RenderNode. * * @returns { Offset } - Returns the shadow offset of the RenderNode. * @default Offset { x: 0, y: 0 } * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get shadow offset of the RenderNode. * * @returns { Offset } - Returns the shadow offset of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shadowOffset(): Offset; /** * Set label of the RenderNode. * * @param { string } label - the label of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set label(label: string); /** * Get label of the RenderNode. * * @returns { string } - Returns the label of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get label(): string; /** * Set shadow alpha of the RenderNode. * * @param { number } alpha - the shadow alpha of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set shadow alpha of the RenderNode. * * @param { number } alpha - the shadow alpha of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shadowAlpha(alpha: number); /** * Get shadow alpha of the RenderNode. * * @returns { number } - Returns the shadow alpha of the RenderNode. * @default 0 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get shadow alpha of the RenderNode. * * @returns { number } - Returns the shadow alpha of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shadowAlpha(): number; /** * Set shadow elevation of the RenderNode. * * @param { number } elevation - the shadow elevation of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set shadow elevation of the RenderNode. * * @param { number } elevation - the shadow elevation of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shadowElevation(elevation: number); /** * Get shadow elevation of the RenderNode. * * @returns { number } - Returns the shadow elevation of the RenderNode. * @default 0 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get shadow elevation of the RenderNode. * * @returns { number } - Returns the shadow elevation of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shadowElevation(): number; /** * Set shadow radius of the RenderNode. * * @param { number } radius - the shadow radius of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Set shadow radius of the RenderNode. * * @param { number } radius - the shadow radius of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shadowRadius(radius: number); /** * Get shadow radius of the RenderNode. * * @returns { number } - Returns the shadow radius of the RenderNode. * @default 0 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Get shadow radius of the RenderNode. * * @returns { number } - Returns the shadow radius of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shadowRadius(): number; /** * Set border style of the RenderNode. * * @param { Edges } style - the border style of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set borderStyle(style: Edges); /** * Get border style of the RenderNode. * * @returns { Edges } - Returns the border style of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get borderStyle(): Edges; /** * Set border width of the RenderNode. * * @param { Edges } width - the border width of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set borderWidth(width: Edges); /** * Get border width of the RenderNode. * * @returns { Edges } - Returns the border width of the RenderNode. * @default 0 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get borderWidth(): Edges; /** * Set border color of the RenderNode. * * @param { Edges } color - the border color of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set borderColor(color: Edges); /** * Get border color of the RenderNode. * * @returns { Edges } - Returns the border color of the RenderNode. * @default 0XFF000000 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get borderColor(): Edges; /** * Set border radius of the RenderNode. * * @param { BorderRadiuses } radius - the border radius of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set borderRadius(radius: BorderRadiuses); /** * Get border radius of the RenderNode. * * @returns { BorderRadiuses } - Returns the border radius of the RenderNode. * @default 0 * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get borderRadius(): BorderRadiuses; /** * Set shape mask of the RenderNode. * * @param { ShapeMask } shapeMask - the shape mask of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shapeMask(shapeMask: ShapeMask); /** * Get shape mask of the RenderNode. * * @returns { ShapeMask } - Returns the shape mask of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shapeMask(): ShapeMask; /** * Set shape clip of the RenderNode. * * @param { ShapeClip } shapeClip - the shape clip of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set shapeClip(shapeClip: ShapeClip); /** * Get shape clip of the RenderNode. * * @returns { ShapeClip } - Returns the shape clip of the RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.clip * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get shapeClip(): ShapeClip; /** * Mark whether to preferentially draw the node and its children. * * @param { boolean } isNodeGroup - The parameter indicates whether to preferentially draw the node and its children. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set markNodeGroup(isNodeGroup: boolean); /** * Get whether to preferentially draw the node and its children. * * @returns { boolean } - Return whether to preferentially draw the node and its children. * @default false * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get markNodeGroup(): boolean; /** * Draw Method. Executed when the associated RenderNode is onDraw. * * @param { DrawContext } context - The DrawContext will be used when executed draw method. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Draw Method. Executed when the associated RenderNode is onDraw. * * @param { DrawContext } context - The DrawContext will be used when executed draw method. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ draw(context: DrawContext): void; /** * Invalidate the RenderNode, which will cause a re-render of the RenderNode. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @since 11 */ /** * Invalidate the RenderNode, which will cause a re-render of the RenderNode. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ invalidate(): void; /** * Dispose the RenderNode immediately. * * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ dispose(): void; /** * Set the length metrics unit of RenderNode. * * @param { LengthMetricsUnit } unit - The length metrics unit of RenderNode. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ set lengthMetricsUnit(unit: LengthMetricsUnit); /** * Get the length metrics unit of RenderNode. * * @returns { LengthMetricsUnit } - Return the length metrics unit of RenderNode. * @default LengthMetricsUnit.DEFAULT * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since arkts {'1.1':'12','1.2':'20'} * @arkts 1.1&1.2 */ get lengthMetricsUnit(): LengthMetricsUnit; /** * Get if the node is disposed. * * @returns { boolean } - Returns true if the node is disposed, false otherwise. * @syscap SystemCapability.ArkUI.ArkUI.Full * @crossplatform * @atomicservice * @since 20 */ isDisposed(): boolean; }