Home
last modified time | relevance | path

Searched refs:cellLength (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/scanline/
H A Dgeometry_scanline.h105 void AddCells(int32_t x, uint32_t cellLength, const uint8_t* covers) in AddCells() argument
108 …if (memcpy_s(&arrayCovers_[x], cellLength * sizeof(uint8_t), covers, cellLength * sizeof(uint8_t))… in AddCells()
113 curSpanBlock_->spanLength += static_cast<int16_t>(cellLength); in AddCells()
117 curSpanBlock_->spanLength = static_cast<int16_t>(cellLength); in AddCells()
120 lastScaneLineXCoord_ = x + cellLength - 1; in AddCells()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_adaptive/
H A Dgrid_adaptive_layout_algorithm.cpp55 auto cellLength = gridLayoutProperty->GetCellLength(); in Measure() local
56 if (cellLength.has_value() && cellLength > 0) { in Measure()
57 …auto cellLengthInPx = static_cast<float>(Dimension(cellLength.value(), DimensionUnit::VP).ConvertT… in Measure()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-grid.md135 > - 此模式下以下属性不生效:layoutDirection、maxCount、minCount、cellLength
145 > - 此模式下以下属性不生效:layoutDirection、maxCount、minCount、cellLength
152 > - 行数由Grid高度、首个元素高度、cellLength、rowsGap共同决定。超出行列容纳范围的元素不显示,也不能通过滚动进行展示。
153 > - 此模式下仅生效以下属性:layoutDirection、maxCount、minCount、cellLength、editMode、columnsGap、rowsGap。
352 ### cellLength<sup>8+</sup>
354 cellLength(value: number)
1278 layoutDirection、maxcount、minCount、cellLength的使用。
1296 Text('rowsTemplate、columnsTemplate都不设置layoutDirection、maxcount、minCount、cellLength才生效')
1311 .cellLength(0)
1321 ![cellLength](figures/cellLength.gif)
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Dgrid_layout_component.h238 void SetCellLength(int32_t cellLength) in SetCellLength() argument
240 cellLength_ = cellLength; in SetCellLength()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_grid.h46 static void CellLength(int32_t cellLength);
H A Djs_grid.cpp477 void JSGrid::CellLength(int32_t cellLength) in CellLength() argument
479 GridModel::GetInstance()->SetCellLength(cellLength); in CellLength()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_model_ng.h93 static void SetCellLength(FrameNode* frameNode, int32_t cellLength);
H A Dgrid_model_ng.cpp471 void GridModelNG::SetCellLength(FrameNode* frameNode, int32_t cellLength) in SetCellLength() argument
473 ACE_UPDATE_NODE_LAYOUT_PROPERTY(GridLayoutProperty, CellLength, cellLength, frameNode); in SetCellLength()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dgrid_modifier.cpp238 void SetGridCellLength(ArkUINodeHandle node, int32_t cellLength) in SetGridCellLength() argument
242 GridModelNG::SetCellLength(frameNode, cellLength); in SetGridCellLength()
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-grid.md135 …attributes do not take effect: **layoutDirection**, **maxCount**, **minCount**, and **cellLength**.
145 …attributes do not take effect: **layoutDirection**, **maxCount**, **minCount**, and **cellLength**.
152 … jointly determined by the grid height, height of the first element, **cellLength**, and **rowsGap…
153 …ibutes take effect: **layoutDirection**, **maxCount**, **minCount**, **cellLength**, **editMode**,…
352 ### cellLength<sup>8+</sup>
354 cellLength(value: number)
1276 Example of using **layoutDirection**, **maxcount**, **minCount**, and **cellLength**:
1294 …Text('The layoutDirection, maxcount, minCount, and cellLength parameters take effect only when nei…
1309 .cellLength(0)
1319 ![cellLength](figures/cellLength.gif)
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Darkts-layout-development-create-grid.md65 >当Grid组件设置了rowsTemplate或columnsTemplate时,Grid的layoutDirection、maxCount、minCount、cellLength属性不生效,属性说…
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkGrid.ts95 cellLength(value: number): this {
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_grid_bridge.cpp496 int32_t cellLength = arg_cellLength->Int32Value(vm); in SetCellLength() local
497 GetArkUINodeModifiers()->getGridModifier()->setGridCellLength(nativeNode, cellLength); in SetCellLength()
/ohos5.0/docs/en/application-dev/ui/
H A Darkts-layout-development-create-grid.md68 … component, its **layoutDirection**, **maxCount**, **minCount**, and **cellLength** attributes do …
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/export/
H A DarkComponent.d.ts289 cellLength(value: number): this;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/
H A Dcjui_api.h1110 void (*setGridCellLength)(ArkUINodeHandle node, ArkUI_Int32 cellLength);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H A Darkoala_api.h2696 void (*setGridCellLength)(ArkUINodeHandle node, ArkUI_Int32 cellLength);
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-arkui.md2202 …变化|类名:GridAttribute;<br>方法or属性:cellLength(value: number): GridAttribute;<br>旧版本信息:|类名:GridAttribut…
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js5993 cellLength(value) { method in ArkGridComponent
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/
H A Djs-apidiff-arkui.md2202 …e name: cellLength(value: number): GridAttribute;<br>Old version information: |Class name: GridAtt…