papersizeとは? わかりやすく解説

Weblio 辞書 > コンピュータ > IT用語辞典 > papersizeの意味・解説 

判型

読み方はんけいはんがた
別名:判形
【英】paper size

判型とは、書籍雑誌新聞などの印刷物仕上がりサイズのこと、あるいは、用紙サイズのことである。

判型は、主にA判B判分けられるJIS規格では、A判A0判~A10判、B判B0判B10判まで、それぞれ11種類の判型に分けられている。A0判半分折ったサイズA1判A1判半分折ったサイズA2判となる。B判同様にB0判半分折ったものがB1判B1判半分折ったものがB2判となる。

一般的にはA5判210×148mm)やB5判257×182mm)などの判型が多く用いられている。週刊誌などの雑誌B5判ビジネス書A5判サイズである。

判型は、日本国内では、1929年JIS規格前身であるJESの「紙の仕上げ寸法」により策定された。なお、A判B判といった判型の他のサイズ規格としては、四六判菊判などを挙げることができる。


参照リンク
紙の寸法・規格を調べるには - (国立国会図書館レファレンス共同データベース
印刷・DTPのほかの用語一覧
印刷:  DM折り  FMスクリーニング  版ずれ  判型  ベタ組み  袋とじ印刷  プリプレス

PaperSize クラス

用紙サイズ指定します

名前空間: System.Drawing.Printing
アセンブリ: System.Drawing (system.drawing.dll 内)
構文構文

<SerializableAttribute> _
Public Class PaperSize
[SerializableAttribute] 
public class PaperSize
[SerializableAttribute] 
public ref class PaperSize
/** @attribute SerializableAttribute() */ 
public class PaperSize
SerializableAttribute 
public class PaperSize
解説解説
使用例使用例

プリンタサポートされている用紙サイズcomboPaperSize コンボ ボックス設定するコード例次に示しますまた、カスタム用紙サイズ作成してコンボ ボックス追加します。PaperName は、コンボ ボックスの DisplayMember プロパティ通じて追加される項目の表示文字列提供するプロパティとして識別されます。例では、printDoc という名前の PrintDocument 変数と、特定のコンボ ボックス存在することを前提にしています。

' Add list of supported paper sizes found on the printer. 
' The DisplayMember property is used to identify the property that will
 provide the display string.
comboPaperSize.DisplayMember = "PaperName"

Dim pkSize As PaperSize
For i = 0 to printDoc.PrinterSettings.PaperSizes.Count
 - 1
    pkSize = printDoc.PrinterSettings.PaperSizes.Item(i)
    comboPaperSize.Items.Add(pkSize)
Next

' Create a PaperSize and specify the custom paper size through the constructor
 and add to combobox.
Dim pkCustomSize1 As New
 PaperSize("Custom Paper Size", 100, 200)

comboPaperSize.Items.Add(pkCustomSize1)
// Add list of supported paper sizes found on the printer. 
// The DisplayMember property is used to identify the property that
 will provide the display string.
comboPaperSize.DisplayMember = "PaperName";

PaperSize pkSize;
for (int i = 0; i < printDoc.PrinterSettings.PaperSizes.Count;
 i++){
    pkSize = printDoc.PrinterSettings.PaperSizes[i];
    comboPaperSize.Items.Add(pkSize);
}

// Create a PaperSize and specify the custom paper size through the
 constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size",
 100, 200);

comboPaperSize.Items.Add(pkCustomSize1);

// Add list of supported paper sizes found on the printer.
// The DisplayMember property is used to identify the property that
 will provide the display String*.
comboPaperSize->DisplayMember = "PaperName";
PaperSize^ pkSize;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSizes->Count;
 i++ )
{
   pkSize = printDoc->PrinterSettings->PaperSizes[ i ];
   comboPaperSize->Items->Add( pkSize );
}

// Create a PaperSize and specify the custom paper size through the
 constructor and add to combobox.
PaperSize^ pkCustomSize1 = gcnew PaperSize( "First custom size",100,200
 );
comboPaperSize->Items->Add( pkCustomSize1 );
// Add list of supported paper sizes found on the printer. 
// The DisplayMember property is used to identify the property that
 
// will provide the display string.
comboPaperSize.set_DisplayMember("PaperName");

PaperSize pkSize;
for (int i = 0; i < printDoc.get_PrinterSettings().get_PaperSizes().
    get_Count(); i++) {
    pkSize = printDoc.get_PrinterSettings().get_PaperSizes().
        get_Item(i);
    comboPaperSize.get_Items().Add(pkSize);
}
// Create a PaperSize and specify the custom paper size through 
// the constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size",
 100, 200);

comboPaperSize.get_Items().Add(pkCustomSize1);
継承階層継承階層
System.Object
  System.Drawing.Printing.PaperSize
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
PaperSize メンバ
System.Drawing.Printing 名前空間
Kind
PrinterSettings
PrinterSettings.PaperSizes
PageSettings.PaperSize プロパティ
ListControl.DisplayMember

PaperSize コンストラクタ ()


PaperSize コンストラクタ (String, Int32, Int32)

PaperSize クラス新しインスタンス初期化します。

名前空間: System.Drawing.Printing
アセンブリ: System.Drawing (system.drawing.dll 内)
構文構文

解説解説
使用例使用例

プリンタサポートされている用紙サイズcomboPaperSize コンボ ボックス設定するコード例次に示しますまた、カスタム用紙サイズ作成してコンボ ボックス追加します。PaperName は、コンボ ボックスの DisplayMember プロパティ通じて追加される項目の表示文字列提供するプロパティとして識別されます。例では、printDoc という名前の PrintDocument 変数と、特定のコンボ ボックス存在することを前提にしています。

' Add list of supported paper sizes found on the printer. 
' The DisplayMember property is used to identify the property that will
 provide the display string.
comboPaperSize.DisplayMember = "PaperName"

Dim pkSize As PaperSize
For i = 0 to printDoc.PrinterSettings.PaperSizes.Count
 - 1
    pkSize = printDoc.PrinterSettings.PaperSizes.Item(i)
    comboPaperSize.Items.Add(pkSize)
Next

' Create a PaperSize and specify the custom paper size through the constructor
 and add to combobox.
Dim pkCustomSize1 As New
 PaperSize("Custom Paper Size", 100, 200)

comboPaperSize.Items.Add(pkCustomSize1)
// Add list of supported paper sizes found on the printer. 
// The DisplayMember property is used to identify the property that
 will provide the display string.
comboPaperSize.DisplayMember = "PaperName";

PaperSize pkSize;
for (int i = 0; i < printDoc.PrinterSettings.PaperSizes.Count;
 i++){
    pkSize = printDoc.PrinterSettings.PaperSizes[i];
    comboPaperSize.Items.Add(pkSize);
}

// Create a PaperSize and specify the custom paper size through the
 constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size",
 100, 200);

comboPaperSize.Items.Add(pkCustomSize1);

// Add list of supported paper sizes found on the printer.
// The DisplayMember property is used to identify the property that
 will provide the display String*.
comboPaperSize->DisplayMember = "PaperName";
PaperSize^ pkSize;
for ( int i = 0; i < printDoc->PrinterSettings->PaperSizes->Count;
 i++ )
{
   pkSize = printDoc->PrinterSettings->PaperSizes[ i ];
   comboPaperSize->Items->Add( pkSize );
}

// Create a PaperSize and specify the custom paper size through the
 constructor and add to combobox.
PaperSize^ pkCustomSize1 = gcnew PaperSize( "First custom size",100,200
 );
comboPaperSize->Items->Add( pkCustomSize1 );
// Add list of supported paper sizes found on the printer. 
// The DisplayMember property is used to identify the property that
 
// will provide the display string.
comboPaperSize.set_DisplayMember("PaperName");

PaperSize pkSize;
for (int i = 0; i < printDoc.get_PrinterSettings().get_PaperSizes().
    get_Count(); i++) {
    pkSize = printDoc.get_PrinterSettings().get_PaperSizes().
        get_Item(i);
    comboPaperSize.get_Items().Add(pkSize);
}
// Create a PaperSize and specify the custom paper size through 
// the constructor and add to combobox.
PaperSize pkCustomSize1 = new PaperSize("First custom size",
 100, 200);

comboPaperSize.get_Items().Add(pkCustomSize1);
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
PaperSize クラス
PaperSize メンバ
System.Drawing.Printing 名前空間

PaperSize コンストラクタ

PaperSize クラス新しインスタンス初期化します。

PaperSize クラスインスタンス初期プロパティ値を次の表に示します

プロパティ

初期値

Kind

PaperKind.Custom

PaperName

String.Empty


オーバーロードの一覧オーバーロードの一覧
名前 説明
PaperSize () PaperSize クラス新しインスタンス初期化します。
PaperSize (String, Int32, Int32) PaperSize クラス新しインスタンス初期化します。
参照参照

関連項目

PaperSize クラス
PaperSize メンバ
System.Drawing.Printing 名前空間

PaperSize プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ Height 用紙の縦幅を 1/100 インチ単位取得または設定します
パブリック プロパティ Kind 用紙種類取得します
パブリック プロパティ PaperName 用紙種類名を取得または設定します
パブリック プロパティ RawKind PaperSize 値のいずれか、またはカスタム値を表す整数取得または設定します
パブリック プロパティ Width 用紙横幅1/100 インチ単位取得または設定します
参照参照

関連項目

PaperSize クラス
System.Drawing.Printing 名前空間
Kind
PrinterSettings
PrinterSettings.PaperSizes
PageSettings.PaperSize プロパティ
ListControl.DisplayMember

PaperSize メソッド


PaperSize メンバ

用紙サイズ指定します

PaperSize データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Height 用紙の縦幅を 1/100 インチ単位取得または設定します
パブリック プロパティ Kind 用紙種類取得します
パブリック プロパティ PaperName 用紙種類名を取得または設定します
パブリック プロパティ RawKind PaperSize 値のいずれか、またはカスタム値を表す整数取得または設定します
パブリック プロパティ Width 用紙横幅1/100 インチ単位取得または設定します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

PaperSize クラス
System.Drawing.Printing 名前空間
Kind
PrinterSettings
PrinterSettings.PaperSizes
PageSettings.PaperSize プロパティ
ListControl.DisplayMember

紙の寸法

(papersize から転送)

出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2023/09/26 15:59 UTC 版)

紙の寸法(かみのすんぽう)では、工業規格について記述する。サイズの系統にはA列B列四六判菊判ハトロン判AB判などがある。






英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「papersize」の関連用語

papersizeのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



papersizeのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
IT用語辞典バイナリIT用語辞典バイナリ
Copyright © 2005-2024 Weblio 辞書 IT用語辞典バイナリさくいん。 この記事は、IT用語辞典バイナリ判型の記事を利用しております。
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.
ウィキペディアウィキペディア
All text is available under the terms of the GNU Free Documentation License.
この記事は、ウィキペディアの紙の寸法 (改訂履歴)の記事を複製、再配布したものにあたり、GNU Free Documentation Licenseというライセンスの下で提供されています。 Weblio辞書に掲載されているウィキペディアの記事も、全てGNU Free Documentation Licenseの元に提供されております。

©2024 GRAS Group, Inc.RSS