Skip to content

GridColumn

Summary

Represents the column of the grid.

Signature

1
public abstract interface GridColumn

Namespace

cAlgo.API

See Also

Methods

SetWidthInPixels

Summary

Sets the grid column width in pixels.

Signature

1
public abstract void SetWidthInPixels(double value)

Parameters

Name Type Description
value double The value.

Return Value

void

SetWidthInStars

Summary

Sets the grid column width in stars.

Signature

1
public abstract void SetWidthInStars(double stars)

Parameters

Name Type Description
stars double The stars.

Return Value

void

SetWidthToAuto

Summary

Sets the grid column width to automatic.

Signature

1
public abstract void SetWidthToAuto()

Return Value

void

Properties

Index

Summary

Gets the grid column index.

Signature

1
public abstract int Index {get;}

Return Value

int

Width

Summary

Gets the grid column width.

Signature

1
public abstract GridLength Width {get;}

Return Value

GridLength

MinWidth

Summary

Defines the grid column minimum width.

Signature

1
public abstract double MinWidth {get; set;}

Return Value

double

MaxWidth

Summary

Defines the grid column maximum width.

Signature

1
public abstract double MaxWidth {get; set;}

Return Value

double