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
[out] 구문 분석되는 보고서 크기입니다.
반환
시도가 성공하면 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
[out] 구문 분석되는 보고서 크기입니다.
반환
시도가 성공하면 true
이고, 그렇지 않으면 false
입니다.