pangoItemSplit: pangoItemSplit

Description Usage Arguments Value Author(s)

View source: R/pangoFuncs.R

Description

Modifies orig to cover only the text after split.index, and returns a new item that covers the text before split.index that used to be in orig. You can think of split.index as the length of the returned item. split.index may not be 0, and it may not be greater than or equal to the length of orig (that is, there must be at least one byte assigned to each item, you can't create a zero-length item). split.offset is the length of the first item in chars, and must be provided because the text used to generate the item isn't available, so pangoItemSplit can't count the char length of the split items itself.

Usage

1
pangoItemSplit(orig, split.index, split.offset)

Arguments

orig

[PangoItem] a PangoItem

split.index

[integer] byte index of position to split item, relative to the start of the item

split.offset

[integer] number of chars between start of orig and split.index

Value

[PangoItem] new item representing text before split.index,

Author(s)

Derived by RGtkGen from GTK+ documentation


RGtk2 documentation built on Oct. 14, 2021, 5:08 p.m.

Related to pangoItemSplit in RGtk2...