LegendCell コンストラクター

定義

LegendCell クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
LegendCell()

LegendCell クラスの新しいインスタンスを初期化します。

LegendCell(String)

セルのテキスト名またはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

LegendCell(LegendCellType, String)

指定したセルの種類と、セルのテキストまたはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

LegendCell(LegendCellType, String, ContentAlignment)

指定したセルの種類、コンテンツの配置、およびセルのテキストまたはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

LegendCell()

LegendCell クラスの新しいインスタンスを初期化します。

public:
 LegendCell();
public LegendCell();
Public Sub New ()

適用対象

LegendCell(String)

セルのテキスト名またはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

public:
 LegendCell(System::String ^ text);
public LegendCell(string text);
new System.Web.UI.DataVisualization.Charting.LegendCell : string -> System.Web.UI.DataVisualization.Charting.LegendCell
Public Sub New (text As String)

パラメーター

text
String

セルの種類に応じて、セルのテキストまたはイメージ名を表す string 値。

適用対象

LegendCell(LegendCellType, String)

指定したセルの種類と、セルのテキストまたはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

public:
 LegendCell(System::Web::UI::DataVisualization::Charting::LegendCellType cellType, System::String ^ text);
public LegendCell(System.Web.UI.DataVisualization.Charting.LegendCellType cellType, string text);
new System.Web.UI.DataVisualization.Charting.LegendCell : System.Web.UI.DataVisualization.Charting.LegendCellType * string -> System.Web.UI.DataVisualization.Charting.LegendCell
Public Sub New (cellType As LegendCellType, text As String)

パラメーター

cellType
LegendCellType

使用する凡例セルの種類を表す LegendCellType 値。

text
String

セルの種類に応じて、セルのテキストまたはイメージ名を表す文字列値。

適用対象

LegendCell(LegendCellType, String, ContentAlignment)

指定したセルの種類、コンテンツの配置、およびセルのテキストまたはイメージ名を指定するtext パラメーターを使用して、LegendCell クラスの新しいインスタンスを初期化します。

public:
 LegendCell(System::Web::UI::DataVisualization::Charting::LegendCellType cellType, System::String ^ text, System::Drawing::ContentAlignment alignment);
public LegendCell(System.Web.UI.DataVisualization.Charting.LegendCellType cellType, string text, System.Drawing.ContentAlignment alignment);
new System.Web.UI.DataVisualization.Charting.LegendCell : System.Web.UI.DataVisualization.Charting.LegendCellType * string * System.Drawing.ContentAlignment -> System.Web.UI.DataVisualization.Charting.LegendCell
Public Sub New (cellType As LegendCellType, text As String, alignment As ContentAlignment)

パラメーター

cellType
LegendCellType

使用する凡例セルの種類を表す LegendCellType 値。

text
String

セルの種類に応じて、セルのテキストまたはイメージ名を表す string 値。

alignment
ContentAlignment

凡例セルの内容の配置を表す ContentAlignment 値。

適用対象