igCalcTextSize function

void igCalcTextSize(
  1. Pointer<ImVec2> pOut,
  2. Pointer<Uint8> text,
  3. Pointer<Uint8> text_end,
  4. int hide_text_after_double_hash,
  5. double wrap_width,
)
void igCalcTextSize(
 ImVec2* pOut ,
 byte* text ,
 byte* text_end ,
 byte hide_text_after_double_hash ,
 float wrap_width
);

Implementation

void igCalcTextSize(
        Pointer<ImVec2> pOut,
        Pointer<Uint8> text,
        Pointer<Uint8> text_end,
        int hide_text_after_double_hash,
        double wrap_width) =>
    _igCalcTextSize(
        pOut, text, text_end, hide_text_after_double_hash, wrap_width);