Работа с функцией выделения GridJs
Contents
[
Hide
]
Работа с функцией выделения GridJs
Мы поддерживаем перечисленные ниже API-интерфейсы JS для функции Highlight.
- Включите выделение и установите стиль выделения, все API-интерфейсы выделения вступят в силу только после установки стиля выделения.
xs.showHighlights(style)
// the parameter is:
style: the style for highlight ,currently only support color
for example: {'color':'rgba(85, 57, 47, 0.08)'}
- Отключить выделение
xs.hideHighlights()
- Добавить текст ячейки для выделения
xs.sheet.addHighlightText(row,col,startpostion,endposition)
// the parameters are:
row:row index
col:column index
startpostion: highlight start postion in cell text
endpostion: highlight end postion in cell text
- Удалить выделение текста ячейки в массиве
xs.sheet.removeHighlightText(row,col)
// the parameters are:
row:row index
col:column index
- Получить массив для выделения текста ячейки
xs.sheet.getHighlightTexts()
- Добавить диапазон ячеек для выделения
xs.sheet.addHighlightRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Удалить выделение диапазона ячеек в массиве
xs.sheet.removeHighlightRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Получить массив для выделения диапазона ячеек
xs.sheet.getHighlightRanges()
- Установить диапазон ячеек для инверсного выделения
xs.sheet.setHighlightInverseRange(sri,sci,eri,eci)
// the parameters are:
sri:start row index of cell range
sci:start column index of cell range
eri:end row index of cell range
eci:end column index of cell range
- Удалить выделение для инвертированного выделения
xs.sheet.removeHighlightInverseRange()
- Получить обратный диапазон ячеек выделения
xs.sheet.getHighlightInverseRange()
- Добавить форму, чтобы выделить массив
xs.sheet.addHighlightShape(shapeid)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes
- Удалить фигуру выделения в массиве
xs.sheet.removeHighlightShape(shapeid)
// the parameters are:
shapeid: the id of shape, can be find in xs.sheet.data.shapes
- Получить массив для выделения формы
xs.sheet.getHighlightShaps()
- Добавить изображение, чтобы выделить массив
xs.sheet.addHighlightImage(imageid)
// the parameters are:
imageid: the id of image, can be find in xs.sheet.data.images
- Удалить выделение изображения в массиве
xs.sheet.removeHighlightImage(imageid)
// the parameters are:
imageid: the id of image, can be find in xs.sheet.data.images
- Получить массив для выделения изображения
xs.sheet.getHighlightImages()
- установить, следует ли выделять весь рабочий лист, включать все фигуры и изображения
xs.sheet.setHighlightAll(ishighlightall,isrerender=true)
// the parameters are:
ishighlightall: true or false,whether to highlight all
isrerender: true or false,whether to reRender
- установить пользовательскую функцию выделения изображения
xs.sheet.setCustomHighlightImgFunc(func)
// the parameters are:
func: the custom highlight image function, it shall take two parameters ,first is ishighlight,the second one is the fabric image object
//we use fabric js to manage image object, please refer to http://fabricjs.com/image-filters to check more info
below is an example for the decleare function:
const customHighlightImage = (ishighlight, imgobj) => {
imgobj.filters[0] = ishighlight ? new fabric.Image.filters.Sepia() : false;
imgobj.applyFilters();
}
Вы можете найти больше на нашей демонстрационной странице github https://github.com/aspose-cells/Aspose.Cells-for-.NET/blob/master/Examples_GridJs/wwwroot/xspread/index.html.