Formats and parses hexadecimal values
Namespace: Dapfor.Net.FormatsAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
C# |
---|
public class HexFormat : IFormat |
Visual Basic |
---|
Public Class HexFormat Implements IFormat |
Visual C++ |
---|
public ref class HexFormat : IFormat |
F# |
---|
type HexFormat = class interface IFormat end |
Remarks
The following example demonstrates how to set hexadecimal format in a column:
Copy | |
---|---|
public void InitializeGrid(Grid grid) { Column column = grid.Headers[0]["SomeColumn"]; column.Format = new HexFormat(); } |