GrapeCity SPREAD for WPF 2.0J
SelectionUnit プロパティ

ユーザーがセル、行、または列を選択できるかどうかを取得または設定します。
構文
'Declaration
 
Public Property SelectionUnit As SelectionUnit
public SelectionUnit SelectionUnit {get; set;}

プロパティ値

選択タイプを指定する SelectionUnit 列挙体。既定値は SelectionUnit.Cell です。
次のサンプルはSelectionUnitプロパティの使用方法を説明します。
<sg:GcSpreadGrid Name="gcSpreadGrid1" ItemsSource="{StaticResource mySource}" 
           SelectionPolicy="Range" SelectionUnit="Cell" SelectionBackground="Red" 
           SelectionForeground="Blue" SelectionBackgroundUnfocused="Brown" SelectionForegroundUnfocused="Gray"
           HeaderSelectionOptions="ColumnHeader|RowHeader">
    <sg:GcSpreadGrid.SelectionBorder>
        <sg:BorderLine Color="Black" Style="MediumDashDot"/>
    </sg:GcSpreadGrid.SelectionBorder>
</sg:GcSpreadGrid>
<ComboBox ItemsSource="{Binding SelectedItems, ElementName=gcSpreadGrid1}" 
          SelectedItem="{Binding SelectedItem, ElementName=gcSpreadGrid1}"
          DisplayMemberPath="Name"/>
参照

GcSpreadGrid クラス
GcSpreadGrid メンバ

 

 


Copyright © 2012 GrapeCity inc. All rights reserved.