• Global community
    • Language:
      • Deutsch
      • English
      • EspaƱol
      • FranƧais
      • PortuguĆŖs
  • ę—„ęœ¬čŖžć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£
    Dedicated community for Japanese speakers
  • ķ•œźµ­ ģ»¤ė®¤ė‹ˆķ‹°
    Dedicated community for Korean speakers
Exit
0

Script question (code) with tables .cells.everyItem()....

Engaged ,
Jan 06, 2021 Jan 06, 2021

Copy link to clipboard

Copied

I have 4 instructions in one script like 

table.cells.everyItem().bottomEdgeStrokeWeight = "0.1mm";
table.cells.everyItem().topEdgeStrokeWeight = "0.1mm";
table.cells.everyItem().leftEdgeStrokeWeight = "0.1mm";
table.cells.everyItem().rightEdgeStrokeWeight = "0.1mm";
and would like to resume in just one but the code for the whole 4 was not available.
 
Please, help me to conclude this in one step.
TOPICS
How to

Views

196

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jan 06, 2021 Jan 06, 2021

Try the following

table.cells.everyItem().properties = {bottomEdgeStrokeWeight:"0.1mm",topEdgeStrokeWeight:"0.1mm",leftEdgeStrokeWeight:"0.1mm",rightEdgeStrokeWeight:"0.1mm" }

-Manan

Votes

Translate

Translate
Community Expert ,
Jan 06, 2021 Jan 06, 2021

Copy link to clipboard

Copied

Try the following

table.cells.everyItem().properties = {bottomEdgeStrokeWeight:"0.1mm",topEdgeStrokeWeight:"0.1mm",leftEdgeStrokeWeight:"0.1mm",rightEdgeStrokeWeight:"0.1mm" }

-Manan

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Jan 07, 2021 Jan 07, 2021

Copy link to clipboard

Copied

LATEST

Mana, perfect. 

Thanks a lot.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines