161847f8eSopenharmony_ci/* 261847f8eSopenharmony_ci * Copyright (c) 2021-2023 Huawei Device Co., Ltd. 361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 461847f8eSopenharmony_ci * you may not use this file except in compliance with the License. 561847f8eSopenharmony_ci * You may obtain a copy of the License at 661847f8eSopenharmony_ci * 761847f8eSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 861847f8eSopenharmony_ci * 961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and 1361847f8eSopenharmony_ci * limitations under the License. 1461847f8eSopenharmony_ci */ 1561847f8eSopenharmony_ci 1661847f8eSopenharmony_ci/** 1761847f8eSopenharmony_ci * @file 1861847f8eSopenharmony_ci * @kit ArkUI 1961847f8eSopenharmony_ci */ 2061847f8eSopenharmony_ci 2161847f8eSopenharmony_ci/** 2261847f8eSopenharmony_ci * Defines Line constructor options. 2361847f8eSopenharmony_ci * 2461847f8eSopenharmony_ci * @interface LineOptions 2561847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 2661847f8eSopenharmony_ci * @crossplatform 2761847f8eSopenharmony_ci * @form 2861847f8eSopenharmony_ci * @atomicservice 2961847f8eSopenharmony_ci * @since 14 3061847f8eSopenharmony_ci */ 3161847f8eSopenharmony_ciinterface LineOptions { 3261847f8eSopenharmony_ci /** 3361847f8eSopenharmony_ci * Width of the rectangle where the line resides. 3461847f8eSopenharmony_ci * 3561847f8eSopenharmony_ci * @type { ?(string | number) } 3661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 3761847f8eSopenharmony_ci * @since 7 3861847f8eSopenharmony_ci */ 3961847f8eSopenharmony_ci /** 4061847f8eSopenharmony_ci * Width of the rectangle where the line resides. 4161847f8eSopenharmony_ci * 4261847f8eSopenharmony_ci * @type { ?(string | number) } 4361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 4461847f8eSopenharmony_ci * @form 4561847f8eSopenharmony_ci * @since 9 4661847f8eSopenharmony_ci */ 4761847f8eSopenharmony_ci /** 4861847f8eSopenharmony_ci * Width of the rectangle where the line resides. 4961847f8eSopenharmony_ci * 5061847f8eSopenharmony_ci * @type { ?(string | number) } 5161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 5261847f8eSopenharmony_ci * @crossplatform 5361847f8eSopenharmony_ci * @form 5461847f8eSopenharmony_ci * @since 10 5561847f8eSopenharmony_ci */ 5661847f8eSopenharmony_ci /** 5761847f8eSopenharmony_ci * Width of the rectangle where the line resides. 5861847f8eSopenharmony_ci * 5961847f8eSopenharmony_ci * @type { ?(string | number) } 6061847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 6161847f8eSopenharmony_ci * @crossplatform 6261847f8eSopenharmony_ci * @form 6361847f8eSopenharmony_ci * @atomicservice 6461847f8eSopenharmony_ci * @since 11 6561847f8eSopenharmony_ci */ 6661847f8eSopenharmony_ci width?: string | number; 6761847f8eSopenharmony_ci 6861847f8eSopenharmony_ci /** 6961847f8eSopenharmony_ci * Height of the rectangle where the line resides. 7061847f8eSopenharmony_ci * 7161847f8eSopenharmony_ci * @type { ?(string | number) } 7261847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 7361847f8eSopenharmony_ci * @since 7 7461847f8eSopenharmony_ci */ 7561847f8eSopenharmony_ci /** 7661847f8eSopenharmony_ci * Height of the rectangle where the line resides. 7761847f8eSopenharmony_ci * 7861847f8eSopenharmony_ci * @type { ?(string | number) } 7961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 8061847f8eSopenharmony_ci * @form 8161847f8eSopenharmony_ci * @since 9 8261847f8eSopenharmony_ci */ 8361847f8eSopenharmony_ci /** 8461847f8eSopenharmony_ci * Height of the rectangle where the line resides. 8561847f8eSopenharmony_ci * 8661847f8eSopenharmony_ci * @type { ?(string | number) } 8761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 8861847f8eSopenharmony_ci * @crossplatform 8961847f8eSopenharmony_ci * @form 9061847f8eSopenharmony_ci * @since 10 9161847f8eSopenharmony_ci */ 9261847f8eSopenharmony_ci /** 9361847f8eSopenharmony_ci * Height of the rectangle where the line resides. 9461847f8eSopenharmony_ci * 9561847f8eSopenharmony_ci * @type { ?(string | number) } 9661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 9761847f8eSopenharmony_ci * @crossplatform 9861847f8eSopenharmony_ci * @form 9961847f8eSopenharmony_ci * @atomicservice 10061847f8eSopenharmony_ci * @since 11 10161847f8eSopenharmony_ci */ 10261847f8eSopenharmony_ci height?: string | number; 10361847f8eSopenharmony_ci} 10461847f8eSopenharmony_ci 10561847f8eSopenharmony_ci/** 10661847f8eSopenharmony_ci * Line drawing component. 10761847f8eSopenharmony_ci * 10861847f8eSopenharmony_ci * @interface LineInterface 10961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 11061847f8eSopenharmony_ci * @since 7 11161847f8eSopenharmony_ci */ 11261847f8eSopenharmony_ci/** 11361847f8eSopenharmony_ci * Line drawing component. 11461847f8eSopenharmony_ci * 11561847f8eSopenharmony_ci * @interface LineInterface 11661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 11761847f8eSopenharmony_ci * @form 11861847f8eSopenharmony_ci * @since 9 11961847f8eSopenharmony_ci */ 12061847f8eSopenharmony_ci/** 12161847f8eSopenharmony_ci * Line drawing component. 12261847f8eSopenharmony_ci * 12361847f8eSopenharmony_ci * @interface LineInterface 12461847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 12561847f8eSopenharmony_ci * @crossplatform 12661847f8eSopenharmony_ci * @form 12761847f8eSopenharmony_ci * @since 10 12861847f8eSopenharmony_ci */ 12961847f8eSopenharmony_ci/** 13061847f8eSopenharmony_ci * Line drawing component. 13161847f8eSopenharmony_ci * 13261847f8eSopenharmony_ci * @interface LineInterface 13361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 13461847f8eSopenharmony_ci * @crossplatform 13561847f8eSopenharmony_ci * @form 13661847f8eSopenharmony_ci * @atomicservice 13761847f8eSopenharmony_ci * @since 11 13861847f8eSopenharmony_ci */ 13961847f8eSopenharmony_ciinterface LineInterface { 14061847f8eSopenharmony_ci /** 14161847f8eSopenharmony_ci * Uses new to create the line. 14261847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 14361847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 14461847f8eSopenharmony_ci * 14561847f8eSopenharmony_ci * @param { object } value 14661847f8eSopenharmony_ci * @returns { LineAttribute } 14761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 14861847f8eSopenharmony_ci * @since 7 14961847f8eSopenharmony_ci */ 15061847f8eSopenharmony_ci /** 15161847f8eSopenharmony_ci * Uses new to create the line. 15261847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 15361847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 15461847f8eSopenharmony_ci * 15561847f8eSopenharmony_ci * @param { object } value 15661847f8eSopenharmony_ci * @returns { LineAttribute } 15761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 15861847f8eSopenharmony_ci * @form 15961847f8eSopenharmony_ci * @since 9 16061847f8eSopenharmony_ci */ 16161847f8eSopenharmony_ci /** 16261847f8eSopenharmony_ci * Uses new to create the line. 16361847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 16461847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 16561847f8eSopenharmony_ci * 16661847f8eSopenharmony_ci * @param { object } value 16761847f8eSopenharmony_ci * @returns { LineAttribute } 16861847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 16961847f8eSopenharmony_ci * @crossplatform 17061847f8eSopenharmony_ci * @form 17161847f8eSopenharmony_ci * @since 10 17261847f8eSopenharmony_ci */ 17361847f8eSopenharmony_ci /** 17461847f8eSopenharmony_ci * Uses new to create the line. 17561847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 17661847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 17761847f8eSopenharmony_ci * 17861847f8eSopenharmony_ci * @param { object } value 17961847f8eSopenharmony_ci * @returns { LineAttribute } 18061847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 18161847f8eSopenharmony_ci * @crossplatform 18261847f8eSopenharmony_ci * @form 18361847f8eSopenharmony_ci * @atomicservice 18461847f8eSopenharmony_ci * @since 11 18561847f8eSopenharmony_ci */ 18661847f8eSopenharmony_ci /** 18761847f8eSopenharmony_ci * Uses new to create the line. 18861847f8eSopenharmony_ci * 18961847f8eSopenharmony_ci * @param { LineOptions } [options] - Line options 19061847f8eSopenharmony_ci * @returns { LineAttribute } 19161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 19261847f8eSopenharmony_ci * @crossplatform 19361847f8eSopenharmony_ci * @form 19461847f8eSopenharmony_ci * @atomicservice 19561847f8eSopenharmony_ci * @since 14 19661847f8eSopenharmony_ci */ 19761847f8eSopenharmony_ci new (options?: LineOptions): LineAttribute; 19861847f8eSopenharmony_ci 19961847f8eSopenharmony_ci /** 20061847f8eSopenharmony_ci * The return value of the parameter is Line. 20161847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 20261847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 20361847f8eSopenharmony_ci * 20461847f8eSopenharmony_ci * @param { object } value 20561847f8eSopenharmony_ci * @returns { LineAttribute } 20661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 20761847f8eSopenharmony_ci * @since 7 20861847f8eSopenharmony_ci */ 20961847f8eSopenharmony_ci /** 21061847f8eSopenharmony_ci * The return value of the parameter is Line. 21161847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 21261847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 21361847f8eSopenharmony_ci * 21461847f8eSopenharmony_ci * @param { object } value 21561847f8eSopenharmony_ci * @returns { LineAttribute } 21661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 21761847f8eSopenharmony_ci * @form 21861847f8eSopenharmony_ci * @since 9 21961847f8eSopenharmony_ci */ 22061847f8eSopenharmony_ci /** 22161847f8eSopenharmony_ci * The return value of the parameter is Line. 22261847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 22361847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 22461847f8eSopenharmony_ci * 22561847f8eSopenharmony_ci * @param { object } value 22661847f8eSopenharmony_ci * @returns { LineAttribute } 22761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 22861847f8eSopenharmony_ci * @crossplatform 22961847f8eSopenharmony_ci * @form 23061847f8eSopenharmony_ci * @since 10 23161847f8eSopenharmony_ci */ 23261847f8eSopenharmony_ci /** 23361847f8eSopenharmony_ci * The return value of the parameter is Line. 23461847f8eSopenharmony_ci * width: Width of the rectangle where the line resides.. 23561847f8eSopenharmony_ci * height: Height of the rectangle where the line resides. 23661847f8eSopenharmony_ci * 23761847f8eSopenharmony_ci * @param { object } value 23861847f8eSopenharmony_ci * @returns { LineAttribute } 23961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 24061847f8eSopenharmony_ci * @crossplatform 24161847f8eSopenharmony_ci * @form 24261847f8eSopenharmony_ci * @atomicservice 24361847f8eSopenharmony_ci * @since 11 24461847f8eSopenharmony_ci */ 24561847f8eSopenharmony_ci /** 24661847f8eSopenharmony_ci * The return value of the parameter is Line. 24761847f8eSopenharmony_ci * 24861847f8eSopenharmony_ci * @param { LineOptions } [options] - Line options 24961847f8eSopenharmony_ci * @returns { LineAttribute } 25061847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 25161847f8eSopenharmony_ci * @crossplatform 25261847f8eSopenharmony_ci * @form 25361847f8eSopenharmony_ci * @atomicservice 25461847f8eSopenharmony_ci * @since 14 25561847f8eSopenharmony_ci */ 25661847f8eSopenharmony_ci (options?: LineOptions): LineAttribute; 25761847f8eSopenharmony_ci} 25861847f8eSopenharmony_ci 25961847f8eSopenharmony_ci/** 26061847f8eSopenharmony_ci * inheritance CommonShapeMethod. 26161847f8eSopenharmony_ci * 26261847f8eSopenharmony_ci * @extends CommonShapeMethod<LineAttribute> 26361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 26461847f8eSopenharmony_ci * @since 7 26561847f8eSopenharmony_ci */ 26661847f8eSopenharmony_ci/** 26761847f8eSopenharmony_ci * inheritance CommonShapeMethod. 26861847f8eSopenharmony_ci * 26961847f8eSopenharmony_ci * @extends CommonShapeMethod<LineAttribute> 27061847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 27161847f8eSopenharmony_ci * @form 27261847f8eSopenharmony_ci * @since 9 27361847f8eSopenharmony_ci */ 27461847f8eSopenharmony_ci/** 27561847f8eSopenharmony_ci * inheritance CommonShapeMethod. 27661847f8eSopenharmony_ci * 27761847f8eSopenharmony_ci * @extends CommonShapeMethod<LineAttribute> 27861847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 27961847f8eSopenharmony_ci * @crossplatform 28061847f8eSopenharmony_ci * @form 28161847f8eSopenharmony_ci * @since 10 28261847f8eSopenharmony_ci */ 28361847f8eSopenharmony_ci/** 28461847f8eSopenharmony_ci * inheritance CommonShapeMethod. 28561847f8eSopenharmony_ci * 28661847f8eSopenharmony_ci * @extends CommonShapeMethod<LineAttribute> 28761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 28861847f8eSopenharmony_ci * @crossplatform 28961847f8eSopenharmony_ci * @form 29061847f8eSopenharmony_ci * @atomicservice 29161847f8eSopenharmony_ci * @since 11 29261847f8eSopenharmony_ci */ 29361847f8eSopenharmony_cideclare class LineAttribute extends CommonShapeMethod<LineAttribute> { 29461847f8eSopenharmony_ci /** 29561847f8eSopenharmony_ci * Coordinate of the start point of the line (relative coordinate). 29661847f8eSopenharmony_ci * 29761847f8eSopenharmony_ci * @param { Array<any> } value 29861847f8eSopenharmony_ci * @returns { LineAttribute } 29961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 30061847f8eSopenharmony_ci * @since 7 30161847f8eSopenharmony_ci */ 30261847f8eSopenharmony_ci /** 30361847f8eSopenharmony_ci * Coordinate of the start point of the line (relative coordinate). 30461847f8eSopenharmony_ci * 30561847f8eSopenharmony_ci * @param { Array<any> } value 30661847f8eSopenharmony_ci * @returns { LineAttribute } 30761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 30861847f8eSopenharmony_ci * @form 30961847f8eSopenharmony_ci * @since 9 31061847f8eSopenharmony_ci */ 31161847f8eSopenharmony_ci /** 31261847f8eSopenharmony_ci * Coordinate of the start point of the line (relative coordinate). 31361847f8eSopenharmony_ci * 31461847f8eSopenharmony_ci * @param { Array<any> } value 31561847f8eSopenharmony_ci * @returns { LineAttribute } 31661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 31761847f8eSopenharmony_ci * @crossplatform 31861847f8eSopenharmony_ci * @form 31961847f8eSopenharmony_ci * @since 10 32061847f8eSopenharmony_ci */ 32161847f8eSopenharmony_ci /** 32261847f8eSopenharmony_ci * Coordinate of the start point of the line (relative coordinate). 32361847f8eSopenharmony_ci * 32461847f8eSopenharmony_ci * @param { Array<any> } value 32561847f8eSopenharmony_ci * @returns { LineAttribute } 32661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 32761847f8eSopenharmony_ci * @crossplatform 32861847f8eSopenharmony_ci * @form 32961847f8eSopenharmony_ci * @atomicservice 33061847f8eSopenharmony_ci * @since 11 33161847f8eSopenharmony_ci */ 33261847f8eSopenharmony_ci startPoint(value: Array<any>): LineAttribute; 33361847f8eSopenharmony_ci 33461847f8eSopenharmony_ci /** 33561847f8eSopenharmony_ci * Line end coordinates (relative coordinates). 33661847f8eSopenharmony_ci * 33761847f8eSopenharmony_ci * @param { Array<any> } value 33861847f8eSopenharmony_ci * @returns { LineAttribute } 33961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 34061847f8eSopenharmony_ci * @since 7 34161847f8eSopenharmony_ci */ 34261847f8eSopenharmony_ci /** 34361847f8eSopenharmony_ci * Line end coordinates (relative coordinates). 34461847f8eSopenharmony_ci * 34561847f8eSopenharmony_ci * @param { Array<any> } value 34661847f8eSopenharmony_ci * @returns { LineAttribute } 34761847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 34861847f8eSopenharmony_ci * @form 34961847f8eSopenharmony_ci * @since 9 35061847f8eSopenharmony_ci */ 35161847f8eSopenharmony_ci /** 35261847f8eSopenharmony_ci * Line end coordinates (relative coordinates). 35361847f8eSopenharmony_ci * 35461847f8eSopenharmony_ci * @param { Array<any> } value 35561847f8eSopenharmony_ci * @returns { LineAttribute } 35661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 35761847f8eSopenharmony_ci * @crossplatform 35861847f8eSopenharmony_ci * @form 35961847f8eSopenharmony_ci * @since 10 36061847f8eSopenharmony_ci */ 36161847f8eSopenharmony_ci /** 36261847f8eSopenharmony_ci * Line end coordinates (relative coordinates). 36361847f8eSopenharmony_ci * 36461847f8eSopenharmony_ci * @param { Array<any> } value 36561847f8eSopenharmony_ci * @returns { LineAttribute } 36661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 36761847f8eSopenharmony_ci * @crossplatform 36861847f8eSopenharmony_ci * @form 36961847f8eSopenharmony_ci * @atomicservice 37061847f8eSopenharmony_ci * @since 11 37161847f8eSopenharmony_ci */ 37261847f8eSopenharmony_ci endPoint(value: Array<any>): LineAttribute; 37361847f8eSopenharmony_ci} 37461847f8eSopenharmony_ci 37561847f8eSopenharmony_ci/** 37661847f8eSopenharmony_ci * Defines Line Component. 37761847f8eSopenharmony_ci * 37861847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 37961847f8eSopenharmony_ci * @since 7 38061847f8eSopenharmony_ci */ 38161847f8eSopenharmony_ci/** 38261847f8eSopenharmony_ci * Defines Line Component. 38361847f8eSopenharmony_ci * 38461847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 38561847f8eSopenharmony_ci * @form 38661847f8eSopenharmony_ci * @since 9 38761847f8eSopenharmony_ci */ 38861847f8eSopenharmony_ci/** 38961847f8eSopenharmony_ci * Defines Line Component. 39061847f8eSopenharmony_ci * 39161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 39261847f8eSopenharmony_ci * @crossplatform 39361847f8eSopenharmony_ci * @form 39461847f8eSopenharmony_ci * @since 10 39561847f8eSopenharmony_ci */ 39661847f8eSopenharmony_ci/** 39761847f8eSopenharmony_ci * Defines Line Component. 39861847f8eSopenharmony_ci * 39961847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 40061847f8eSopenharmony_ci * @crossplatform 40161847f8eSopenharmony_ci * @form 40261847f8eSopenharmony_ci * @atomicservice 40361847f8eSopenharmony_ci * @since 11 40461847f8eSopenharmony_ci */ 40561847f8eSopenharmony_cideclare const Line: LineInterface; 40661847f8eSopenharmony_ci 40761847f8eSopenharmony_ci/** 40861847f8eSopenharmony_ci * Defines Line Component instance. 40961847f8eSopenharmony_ci * 41061847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 41161847f8eSopenharmony_ci * @since 7 41261847f8eSopenharmony_ci */ 41361847f8eSopenharmony_ci/** 41461847f8eSopenharmony_ci * Defines Line Component instance. 41561847f8eSopenharmony_ci * 41661847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 41761847f8eSopenharmony_ci * @form 41861847f8eSopenharmony_ci * @since 9 41961847f8eSopenharmony_ci */ 42061847f8eSopenharmony_ci/** 42161847f8eSopenharmony_ci * Defines Line Component instance. 42261847f8eSopenharmony_ci * 42361847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 42461847f8eSopenharmony_ci * @crossplatform 42561847f8eSopenharmony_ci * @form 42661847f8eSopenharmony_ci * @since 10 42761847f8eSopenharmony_ci */ 42861847f8eSopenharmony_ci/** 42961847f8eSopenharmony_ci * Defines Line Component instance. 43061847f8eSopenharmony_ci * 43161847f8eSopenharmony_ci * @syscap SystemCapability.ArkUI.ArkUI.Full 43261847f8eSopenharmony_ci * @crossplatform 43361847f8eSopenharmony_ci * @form 43461847f8eSopenharmony_ci * @atomicservice 43561847f8eSopenharmony_ci * @since 11 43661847f8eSopenharmony_ci */ 43761847f8eSopenharmony_cideclare const LineInstance: LineAttribute; 438