System::ObjectType::GetType メソッド
ObjectType::GetType() method
typeof() の変換を実装します。プリミティブ型用のオーバーロード。
template<typename T> static std::enable_if<std::is_fundamental<T>::value &&!std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
ReturnValue
指定された型を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。列挙型用のオーバーロード。
template<typename T> static std::enable_if<std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
ReturnValue
指定された型を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。構造体とポインタ用のオーバーロード。
template<typename T> static std::enable_if<(!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&!IsBoxable<T>::value)||IsExceptionWrapper<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
ReturnValue
指定された構造体を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。Nullable 用のオーバーロードです。
template<typename T> static std::enable_if<IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | Nullable 型。 |
ReturnValue
指定された構造体を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。MutlicastDelegate 用のオーバーロード。
template<typename T> static std::enable_if<detail::is_a<T, MulticastDelegate>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | MulticastDelegate 型。 |
ReturnValue
指定された構造体を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。構造体とポインタ用のオーバーロード。
template<typename T> static std::enable_if<!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&IsBoxable<T>::value &&!detail::is_a<T, MulticastDelegate>::value &&!IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType()
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
ReturnValue
指定された構造体を記述する、または SmartPtr が呼び出された場合は指す型を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。uint8_t 用のオーバーロード。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。char16_t 用のオーバーロードです。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。int32_t 用のオーバーロードです。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。int64_t 用のオーバーロードです。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。bool 用のオーバーロードです。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType() method
typeof() の変換を実装します。Void 用のオーバーロードです。
const System::TypeInfo & System::ObjectType::GetType()
参照
- Class TypeInfo
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const String&) method
typeof() の変換を実装します。文字列型用のオーバーロード。
static const System::TypeInfo & System::ObjectType::GetType(const String &obj)
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
ReturnValue
String 型を記述する TypeInfo 構造体への const 参照。
参照
- Class TypeInfo
- Class String
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const T&) method
typeof() の変換を実装します。スマートポインタ用のオーバーロード。
template<typename T> static std::enable_if<IsSmartPtr<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
| パラメーター | 説明 |
|---|---|
| T | ポインタオブジェクト型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | const T& | Object の TypeInfo を取得するためのもの。 |
ReturnValue
渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const T&) method
typeof() の変換を実装します。構造体用のオーバーロード。
template<typename T> static std::enable_if<!IsExceptionWrapper<T>::value &&!IsSmartPtr<T>::value &&!std::is_fundamental<T>::value &&!std::is_enum<T>::value &&!IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
| パラメーター | 説明 |
|---|---|
| T | 構造体型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | const T& | Object の TypeInfo を取得するためのもの。 |
ReturnValue
渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const T&) method
typeof() の変換を実装します。例外用のオーバーロード。
template<typename T> static std::enable_if<IsExceptionWrapper<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T &obj)
| パラメーター | 説明 |
|---|---|
| T | Exception 型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | const T& | Object の TypeInfo を取得するためのもの。 |
ReturnValue
渡されたオブジェクトの最終クラスを記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const T) method
typeof() の変換を実装します。プリミティブ型用のオーバーロード。
template<typename T> static std::enable_if<std::is_fundamental<T>::value||std::is_enum<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T obj)
| パラメーター | 説明 |
|---|---|
| T | プリミティブ型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | const T | IGNORED |
ReturnValue
渡されたオブジェクトの型を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++
ObjectType::GetType(const T) method
typeof() の変換を実装します。Nullable 型用のオーバーロードです。
template<typename T> static std::enable_if<IsNullable<T>::value, constSystem::TypeInfo &>::type System::ObjectType::GetType(const T obj)
| パラメーター | 説明 |
|---|---|
| T | Nullable 型。 |
| パラメーター | 型 | 説明 |
|---|---|---|
| obj | const T | IGNORED |
ReturnValue
渡されたオブジェクトの型を記述する TypeInfo 構造体への const 参照。
参照
- Class ObjectType
- Namespace System
- Library Aspose.Page for C++