Project

Methods

getProjectProperties() → {ProjectProperties}

Source:
프로젝트에 지정된 속성값을 얻음

프로젝트에 지정된 속성값을 object 형태로 얻음
얻을 수 있는 속성:
* title: 프로젝트 제목
* author: 프로젝트 저작권자
* date: 프로젝트 생성일
* width: 프로젝트 기본 width
* height: 프로젝트 기본 height
* background: 프로젝트 기본 백그라운드 컬러
Example
getProjectProperties()
// ->
// {
//   title: 'ironman mark 2',
//   author: 'i am ironman',
//   date: '2016-05-03T20:15:01Z',
//   width: 1280,
//   height: 720,
//   background: 'blue'
// }
Returns:
Type
ProjectProperties

Type Definitions

ProjectProperties

Source:
Properties:
Name Type Description
title string 프로젝트의 제목(title)
author string 프로젝트의 저작자(author)
date string 생성일(date)
ex: 2016-05-03T20:15:01Z
width number 기본 width(width)
height number 기본 height(height)
background string 기본 백그라운드 컬러(background)
프로젝트 속성 객체 타입

페이지의 속성 접근 시 사용되는 객체 타입
Type:
  • Object