버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

  • 설명

    요소(Element)의 속성을 값을 구합니다.

  • 구문

    function getProperty (‘name’);

  • 파라미터

    name: 속성명

    지원 요소(Element)

    name

    반환값

    유형설명

    common (단, video element는 Lock을 제외한 나머지는 지원하지 않음)

    width

    number

    value 단위: px

    height

    number

    value 단위: px

    left

    number

    value 단위: px

    top

    number

    value 단위: px

    visibility

    string

    value: "visible,hidden"

    opacity

    number

    value: 0.0~1.0

    rotation

    number

    value: 0~360

    size

    Object

    {width: 0, height: 0}

    position

    Object

    {left: 0, top: 0}

    lock-position-size

    boolean

    -

    lock-design

    boolean

    -

    lock-content

    boolean

    -

    image

    flip-x

    boolean

    -

    flip-y

    boolean

    -

    source

    string

    file 절대 경로

    flip

    Object

    {x: false, y: false}

    video

    source

    string

    file 절대 경로

    web content

    user-data

    Object

    {"key","value"}

    text

    font-size

    number

    value: font size

    font-variant

    string

    value: "normal, small-caps"

    font-color

    color

    value: "rgba(0, 0, 0, 1)"

    background-color

    color

    value: "rgba(0, 0, 0, 1)"

    font-weight

    string

    value: "normal, bold"

    font-style

    string

    value: "normal, italic"

    text-decoration

    string

    value: "none, line-through, underline"

    letter-spacing

    number

    value 단위: ' px ' (0-50)

    horizontal-align

    string

    value: "left,right,center"

    vertical-align

    string

    value: "top,middle,bottom"

    text

    string

    string

  • 반환값

    Type: 위 표 참고

    API가 성공적으로 수행된 경우: 정상값

    API가 성공적으로 수행되지 않은 경우: undefined

  • 코드 예제

    $wp.content.getPage(pageId).getElement(‘Text1’).getProperty(‘text’);

...