orientation
「orientation」の意味
「orientation」とは、方向付けや適応、取り組む方向性を示す言葉である。また、新入生や新入社員が組織に適応するための指導や研修のことを指すこともある。さらに、性的指向や文化的な背景に基づく価値観や態度を示す場合もある。「orientation」の発音・読み方
「orientation」の発音は、/ˌɔːriənˈteɪʃən/であり、IPAのカタカナ読みでは「オリエンテイション」となる。日本人が発音するカタカナ英語では「オリエンテーション」と読むことが一般的である。「orientation」の定義を英語で解説
Orientation is the process of familiarizing oneself with a new environment, situation, or set of rules. It can also refer to the direction in which someone or something is facing, or the way in which someone's beliefs, values, or attitudes are shaped by their cultural, social, or sexual background.「orientation」の類語
「orientation」の類語には、direction, alignment, adjustment, adaptation, acclimationなどがある。これらの言葉は、方向性や適応、調整などの意味で使われることが多い。「orientation」に関連する用語・表現
「orientation」に関連する用語や表現には、orientation program, sexual orientation, cultural orientation, job orientationなどがある。これらの言葉は、それぞれ研修プログラム、性的指向、文化的背景、仕事の指導などの意味で使われる。「orientation」の例文
1. The orientation for new employees will be held next week.(新入社員向けのオリエンテーションが来週開催される) 2. The company provides a thorough orientation program to help new hires adapt quickly.(会社は新入社員が早く適応できるように、徹底したオリエンテーションプログラムを提供している) 3. The building's orientation maximizes natural sunlight.(建物の向きは自然光を最大限に活用している) 4. The course focuses on cultural orientation for international students.(そのコースは留学生向けの文化的なオリエンテーションに焦点を当てている) 5. The manager will give you an orientation on the company's policies and procedures.(マネージャーが会社の方針と手順についてのオリエンテーションを行う) 6. The orientation of the garden allows for optimal plant growth.(庭の向きは植物の成長に最適である) 7. The school offers an orientation session for parents of new students.(学校は新入生の保護者向けのオリエンテーションを開催している) 8. The conference included a panel discussion on sexual orientation and gender identity.(その会議には、性的指向とジェンダー・アイデンティティに関するパネルディスカッションが含まれていた) 9. The company's orientation towards customer satisfaction has led to its success.(顧客満足に向けた会社の方向性が成功につながっている) 10. The political orientation of the party is conservative.(その政党の政治的指向は保守的である)オリエンテーション
オリエンテーション【orientation】
オリエンテーション orientation
Orientation 列挙体
アセンブリ: System.Web (system.web.dll 内)

Public Enumeration Orientation

メンバ名 | 説明 | |
---|---|---|
Horizontal | コントロールの要素を水平にレイアウトします。ほとんどのコントロールは隣り合わせに並べられます。垂直方向に並べられるコントロールはほとんどありません。 | |
Vertical | コントロールの要素を垂直にレイアウトします。ほとんどのコントロールは垂直方向に並べられます。隣り合わせに並べられるコントロールはほどんとありません。 |

Orientation 列挙体のさまざまな設定を Login コントロールに適用した結果を表すコード例を次に示します。
<%@ Page Language="VB" AutoEventWireup="False"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <SCRIPT runat="server"> Sub changeOrientation_Click(ByVal sender As Object, ByVal e As EventArgs) If Login1.Orientation = Orientation.Horizontal Then Login1.Orientation = Orientation.Vertical Else Login1.Orientation = Orientation.Horizontal End If End Sub </SCRIPT> <HTML> <BODY> <FORM runat="server"> <table align="center" border="1"> <tr> <td> <asp:Login id="Login1" runat="server" Orientation="Vertical" CreateUserText="Create a new user..." CreateUserUrl="newUser.aspx" HelpPageText="Help logging in..." HelpPageUrl="help.aspx" PasswordRecoveryText="Recover your password..." PasswordRecoveryUrl="getPass.aspx"></asp:Login> </td> </tr> <tr> <td align="center"> <asp:Button id="changeOrientation" Text="Change Orientration" runat="Server" OnClick="changeOrientation_Click"></asp:Button> </td> </tr> </table> </FORM> </BODY> </HTML>
<%@ Page Language="C#" AutoEventWireup="False"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <SCRIPT runat="server"> void changeOrientation_Click(object sender, EventArgs e) { if (Login1.Orientation == Orientation.Vertical) Login1.Orientation = Orientation.Horizontal; else Login1.Orientation = Orientation.Vertical; } </SCRIPT> <HTML> <BODY> <FORM runat="server"> <table align="center" border="1"> <tr> <td> <asp:Login id="Login1" runat="server" Orientation="Vertical" CreateUserText="Create a new user..." CreateUserUrl="newUser.aspx" HelpPageText="Help logging in..." HelpPageUrl="help.aspx" PasswordRecoveryText="Recover your password..." PasswordRecoveryUrl="getPass.aspx"></asp:Login> </td> </tr> <tr> <td align="center"> <asp:Button id="changeOrientation" Text="Change Orientration" runat="Server" OnClick="changeOrientation_Click"></asp:Button> </td> </tr> </table> </FORM> </BODY> </HTML>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Orientation 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Public Enumeration Orientation



Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Orientation
オリエンテーション
(ORIENTATION から転送)
出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2021/01/02 05:47 UTC 版)
ナビゲーションに移動 検索に移動オリエンテイション、オリエンテーション(英語: Orientation)
原義は、「方向づけ」、そこから派生した「(新たな環境・考えに対する)適応・順応」を意味する言葉。
- オリエンテーション (教育) - 学校で新入生を順応させるための教育指導。
- オリエンテイション (コンピュータビジョン) - コンピュータビジョン用語。
- オリエンテーション (線型代数学) - 線型代数学用語。実ベクトル空間の向き。
- オリエンテーション (幾何学) - 幾何学用語。
- オリエンテーション (EP)- フィンランドのパワー・メタル・バンド「ソナタ・アークティカ」のEP。
- セクシャル・オリエンテーション - 性的指向のこと (Sexual orientation) 。
- ページ・オリエンテイション - コンピュータ用語のひとつで、ページの方向の意味 (Page orientation) 。
- 見当識 - 医学用語で、自身の基本的な状況把握のこと。意識障害の指標になる。
- 延伸処理 - 未配向状態の長鎖高分子を配向 (orientation) する処理。
関連項目
![]() |
このページは曖昧さ回避のためのページです。一つの語句が複数の意味・職能を有する場合の水先案内のために、異なる用法を一覧にしてあります。お探しの用語に一番近い記事を選んで下さい。このページへリンクしているページを見つけたら、リンクを適切な項目に張り替えて下さい。 |
- ORIENTATIONのページへのリンク