ReportSize.TryParse メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
文字列の値を解析して ReportSizeに変換しようとする試み。
オーバーロード
| 名前 | 説明 |
|---|---|
| TryParse(String, ReportSize) |
文字列の値を解析して ReportSizeに変換しようとする試み。 |
| TryParse(String, Boolean, ReportSize) |
文字列の値を解析して ReportSizeに変換しようとする試み。 |
TryParse(String, ReportSize)
文字列の値を解析して ReportSizeに変換しようとする試み。
public:
static bool TryParse(System::String ^ value, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ReportSize ^ % reportSize);
public static bool TryParse(string value, out Microsoft.ReportingServices.OnDemandReportRendering.ReportSize reportSize);
static member TryParse : string * ReportSize -> bool
Public Shared Function TryParse (value As String, ByRef reportSize As ReportSize) As Boolean
パラメーター
- value
- String
文字列値。
- reportSize
- ReportSize
[アウト] 解析済みレポートのサイズ。
返品
true 試行が成功した場合。それ以外の場合は false。
適用対象
TryParse(String, Boolean, ReportSize)
文字列の値を解析して ReportSizeに変換しようとする試み。
public:
static bool TryParse(System::String ^ value, bool allowNegative, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ReportSize ^ % reportSize);
public static bool TryParse(string value, bool allowNegative, out Microsoft.ReportingServices.OnDemandReportRendering.ReportSize reportSize);
static member TryParse : string * bool * ReportSize -> bool
Public Shared Function TryParse (value As String, allowNegative As Boolean, ByRef reportSize As ReportSize) As Boolean
パラメーター
- value
- String
文字列値。
- allowNegative
- Boolean
valueに負の価値を認めるかどうか。
- reportSize
- ReportSize
[アウト] 解析済みレポートのサイズ。
返品
true 試行が成功した場合。それ以外の場合は false。