Lines Matching full:value
35 …ype](#sidebarcontainertype) | No| Display type of the sidebar.<br>Default value: **SideBarContaine…
47 …<br>If **minSideBarWidth** or **minContentWidth** is not set, the default value will be used for c…
49 … the default value will be used for calculation. If the calculation result is less than 600 vp, 60…
57 showSideBar(value: boolean)
71 …value | boolean | Yes | Whether to display the sidebar.<br>**true**: The sidebar is displayed.<b…
75 controlButton(value: ButtonStyle)
87 | value | [ButtonStyle](#buttonstyle) | Yes | Attributes of the sidebar control button.|
91 showControlButton(value: boolean)
103 …value | boolean | Yes | Whether to display the sidebar control button.<br>**true**: The sidebar …
107 sideBarWidth(value: number)
109 …value less than 0 is set, the default value is used. The value must comply with the width constrai…
119 …value | number | Yes | Width of the sidebar.<br>Default value: **240vp**<br>Unit: vp<br>Value ra…
123 sideBarWidth(value: Length)
125 …value less than 0 is set, the default value is used. The value must comply with the width constrai…
135 …value | [Length](ts-types.md#length) | Yes | Width of the sidebar.<br>Default value: **240vp**.<…
139 minSideBarWidth(value: number)
141 Sets the minimum width of the sidebar. If a value less than 0 is set, the default value is used. Th…
143 **minSideBarWidth**, whether it is specified or kept at the default value, takes precedence over **…
153 …value | number | Yes | Minimum width of the sidebar.<br>Default value: In API version 9 and earl…
157 minSideBarWidth(value: Length)
159 …value less than 0 is set, the default value is used. The value cannot exceed the width of the side…
161 **minSideBarWidth**, whether it is specified or kept at the default value, takes precedence over **…
171 …value | [Length](ts-types.md#length) | Yes | Minimum width of the sidebar.<br>Default value: In …
175 maxSideBarWidth(value: number)
177 Sets the maximum width of the sidebar. If a value less than 0 is set, the default value is used. Th…
179 **maxSideBarWidth**, whether it is specified or kept at the default value, takes precedence over **…
189 | value | number | Yes | Maximum width of the sidebar.<br>Default value: **280vp**<br>Unit: vp.<b…
193 maxSideBarWidth(value: Length)
195 Sets the maximum width of the sidebar. If a value less than 0 is set, the default value is used. Th…
197 **maxSideBarWidth**, whether it is specified or kept at the default value, takes precedence over **…
207 | value | [Length](ts-types.md#length) | Yes | Maximum width of the sidebar.<br>Default value: **…
211 autoHide(value: boolean)
213 …imum width. The value is subject to the **minSideBarWidth** attribute method. If it is not set in …
225 …value | boolean | Yes | Whether to automatically hide the sidebar when it is dragged to be small…
229 sideBarPosition(value: SideBarPosition)
241 | value | [SideBarPosition](#sidebarposition9) | Yes | Position of the sidebar.<br>Default value:…
245 divider(value: DividerStyle | null)
257 | value | [DividerStyle](#dividerstyle10) \| null | Yes | Divider style.<br>- **DividerStyle** (d…
261 minContentWidth(value: Dimension)
265 If this attribute is set to a value less than 0, the default value **360vp** will be used. If this …
269 when the component size is decreased, the content area is shrunk until its width reaches the value …
271 until its width reaches the value defined by **minSideBarWidth**; if the component size is further …
274 …n first, and then the content area is shrunk. After its width reaches the value defined by **minCo…
276 **minContentWidth**, whether it is specified or kept at the default value, takes precedence over **…
286 | value | [Dimension](ts-types.md#dimension10) | Yes | Minimum content area width of the sidebar …
298 … control button and the left of the container.<br>Default value: **16vp**<br>Unit: vp.<br>Value ra…
299 …r control button and the top of the container.<br>Default value: **48vp**<br>Unit: vp.<br>Value ra…
300 …on.<br>Default value:<br>API version 9 and earlier versions: **32vp**<br>API version 10 and later …
301 …on.<br>Default value:<br>API version 9 and earlier versions: **32vp**<br>API version 10 and later …
345 …Length](ts-types.md#length) | Yes | Stroke width of the divider.<br>Default value: **1vp**|
346 …olor](ts-types.md#resourcecolor) | No | Color of the divider.<br>Default value: **#000000, 3%** |
347 …h) | No | Distance between the divider and the top of the sidebar.<br>Default value: **0**|
348 … | No | Distance between the divider and the bottom of the sidebar.<br>Default value: **0**|
365 onChange(callback: (value: boolean) => void)
371 1. The value of **showSideBar** changes.
385 | value | boolean | Yes | The value **true** means that the sidebar is displayed, and **false** m…
438 .onChange((value: boolean) => {
439 console.info('status:' + value)