Interface: IExclusiveRangeService
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:28
Properties
Property | Type | Defined in |
---|---|---|
exclusiveRangesChange$ | Observable <{ ranges : IRange []; subUnitId : string ; unitId : string ; }> | submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:29 |
Methods
addExclusiveRange()
addExclusiveRange(
unitId,
sheetId,
feature,
ranges): void
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:38
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unitId of the exclusive range |
sheetId | string | The sheetId of the exclusive range |
feature | string | The feature of the exclusive range |
ranges | IFeatureRange [] | - |
Returns
void
Description
Add an exclusive range to the service
clearExclusiveRanges()
clearExclusiveRanges(
unitId,
sheetId,
feature): void
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:53
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unitId of the exclusive range |
sheetId | string | The sheetId of the exclusive range |
feature | string | The feature of the exclusive range |
Returns
void
Description
Clear the exclusive ranges
clearExclusiveRangesByGroupId()
clearExclusiveRangesByGroupId(
unitId,
sheetId,
feature,
groupId): void
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:62
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unitId of the exclusive range |
sheetId | string | The sheetId of the exclusive range |
feature | string | The feature of the exclusive range |
groupId | string | The groupId of the exclusive range |
Returns
void
Description
Clear the exclusive ranges by groupId
getExclusiveRanges()
getExclusiveRanges(
unitId,
sheetId,
feature): undefined | IFeatureRange[]
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:46
Parameters
Parameter | Type | Description |
---|---|---|
unitId | string | The unitId of the exclusive range |
sheetId | string | The sheetId of the exclusive range |
feature | string | The feature of the exclusive range |
Returns
undefined
| IFeatureRange
[]
The exclusive ranges
Description
Get the exclusive ranges
getInterestGroupId()
getInterestGroupId(selections): string[]
Defined in: submodules/univer/packages/sheets/src/services/exclusive-range/exclusive-range-service.ts:67
Check the interest group id of the giving selection
Parameters
Parameter | Type | Description |
---|---|---|
selections | ISelectionWithStyle [] | The selections to check |
Returns
string
[]