バージョン

WidthToHeight Ratio の構成

WidthToHeightRatio プロパティ (すべてのバーコード グリッド記号の ) はバーコード行の高さの比率を定義します。リニア記号では、XDimension プロパティ値に基づいてバーの高さの比率を定義します。つまり、barcode. WidthToHeight = 30 の場合、バーの高さが 30*barcode.XDimensionであることを意味します。このプロパティは、Stretch.None が使用され Height が指定されていない時、記号のバーの高さを定義するために使用されます。各バーコードの最小値は、デフォルト値として設定されます。

xamBarcode WidthToHeightRatio 01.png

Visual Basic の場合:

Dim barcode1 As New UltraCode128Barcode With _
{
  .Stretch = 320, _
  .Data = "Code Data", _
  .WidthToHeightRatio = 25 _
}
Dim barcode2 As New UltraCode128Barcode With _
{
  .Stretch = 320, _
  .Data = "Code Data", _
  .WidthToHeightRatio = 35 _
}

C# の場合:

var barcode1 = new UltraCode128Barcode
{
  Width = 320,
  Data = "Code Data",
  WidthToHeightRatio = 25
};
var barcode2 = new UltraCode128Barcode
{
  Width = 320,
  Data = "Code Data",
  WidthToHeightRatio = 35
};