System.UnicodeString.StrRec
C++
struct StrRec {
#ifdef _WIN64
  int _Padding;
#endif /* _WIN64 */
  unsigned short codePage;
  unsigned short elemSize;
  int refCnt;
  int length;
};
プロパティ
| 種類 | 可視性 | ソース | ユニット | 親 | 
|---|---|---|---|---|
| class | protected | ustring.h | System | UnicodeString | 
説明
Unicode 文字列について情報を提供します。
Unicode 文字列について情報を取得するには、StrRec を使用します。StrRec のフィールドとその意味を以下の表に示します。
| フィールド | 意味 | 
|---|---|
| codePage | Unicode 文字列のコード ページ。 | 
| elemSize | Unicode 文字列の各文字のバイト数。 | 
| refCnt | Unicode 文字列への参照の数。 | 
| length | Unicode 文字列の文字数。 |