diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/web/api/mozsmssegmentinfo/index.html | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/web/api/mozsmssegmentinfo/index.html')
-rw-r--r-- | files/ko/web/api/mozsmssegmentinfo/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/files/ko/web/api/mozsmssegmentinfo/index.html b/files/ko/web/api/mozsmssegmentinfo/index.html new file mode 100644 index 0000000000..02f324b453 --- /dev/null +++ b/files/ko/web/api/mozsmssegmentinfo/index.html @@ -0,0 +1,36 @@ +--- +title: MozSmsSegmentInfo +slug: Web/API/MozSmsSegmentInfo +tags: + - Non-standard +translation_of: Archive/B2G_OS/API/MozSmsSegmentInfo +--- +<p>{{ ApiRef() }}</p> + +<p>{{ non-standard_header() }}</p> + +<h2 id="요약">요약</h2> + +<p>DOM <code>MozSmsSegmentInfo</code> 인터페이스는 문자가 자동으로 어떻게 세그멘트로 나누어지는에 관한 정보를 제공합니다. 각 세그먼트는 멀티 파트 SMS 메시지의 단일 SMS를 나타냅니다.</p> + +<p><code>MozSmsSegmentInfo</code> 인터페이스는 직접적으로 인스턴스화 될 수 없습니다; 각 객체를 얻기 위해서는 {{domxref("MozSmsManager.getSegmentInfoForText()")}} 메소드를 사용하십시오.</p> + +<h2 id="속성">속성</h2> + +<dl> + <dt>{{domxref("MozSmsSegmentInfo.segments")}} {{readonlyinline}}</dt> + <dd>입력 문자열에 대한 총 세그먼트의 개수이다.</dd> + <dt>{{domxref("MozSmsSegmentInfo.charsPerSegment")}} {{readonlyinline}}</dt> + <dd>각 세그먼트당 사용 가능한 문자의 개수이다.</dd> + <dt>{{domxref("MozSmsSegmentInfo.charsAvailableInLastSegment")}} {{readonlyinline}}</dt> + <dd>마지막 세그먼트에서 사용 가능한 문자의 최대 개수이다.</dd> +</dl> + +<h2 id="참고_자료">참고 자료</h2> + +<div id="compat-mobile"> </div> + +<ul> + <li>{{ domxref("window.navigator.mozSms") }}</li> + <li>{{ domxref("MozSmsManager") }}</li> +</ul> |