blob: 02f324b453900ff7348ebfd5662fb6a676b5500b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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>
|